internal/strconv.floatInfo.expbits (field)
12 uses
internal/strconv (current package)
atof.go#L370: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L382: if exp-flt.bias >= 1<<flt.expbits-1 {
atof.go#L396: exp = 1<<flt.expbits - 1 + flt.bias
atof.go#L402: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L404: bits |= 1 << flt.mantbits << flt.expbits
atof.go#L497: maxExp := 1<<flt.expbits + flt.bias - 2
atof.go#L551: bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
atof.go#L553: bits |= 1 << flt.mantbits << flt.expbits
ftoa.go#L20: expbits uint
ftoa.go#L86: neg := bits>>(flt.expbits+flt.mantbits) != 0
ftoa.go#L87: exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
ftoa.go#L92: case 1<<flt.expbits - 1:
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |